home *** CD-ROM | disk | FTP | other *** search
-
- Procedure WELCOME;
-
- BEGIN
- xline[1] := ' ';
- xline[2] := ' Issue #5. Well, here it is. I was neglecting this issue for ';
- xline[3] := ' awhile, not writing anything or doing any pack reviews. When ';
- xline[4] := ' I realized just how little I had done I decided to get on the ';
- xline[5] := ' ball and put some material together. Unfortunately, as I was ';
- xline[6] := ' doing this neither the ACiD or Legend pack was released so ';
- xline[7] := ' they''re missing from this issue. Since I didn''t want to lose ';
- xline[8] := ' my motivation I decided just to go ahead with it and catch them ';
- xline[9] := ' next month. ';
- xline[10] := ' ';
- xline[11] := ' As far as Crash n'' Burn is concerned it''s still moving along. ';
- xline[12] := ' Hopefully next month I''ll be able to put some more time into ';
- xline[13] := ' it and redo the look. I did include the source code with ';
- xline[14] := ' this issue so people won''t have to hunt me down for it. It''s ';
- xline[15] := ' nothing spectacular, basic concepts for the beginning pro- ';
- xline[16] := ' grammer. Use it however you want. Also included are a couple ';
- xline[17] := ' of ansis for anyone who might need or want them. Both were ';
- xline[18] := ' played out in past issues of CnB and would make good matrices ';
- xline[19] := ' or menu templates. ';
- xline[20] := ' ';
- xline[21] := ' Other than that there isn''t much else to tell. What I need ';
- xline[22] := ' though is to recruit a co-editor to help me collect material ';
- xline[23] := ' and do pack reviews each month. If anyone is interested in ';
- xline[24] := ' the job then get in touch with me. ';
- xline[25] := ' ';
- xline[26] := ' Stone the Crow ';
- xline[27] := ' ';
- xend := 27;
-
- {Read selected text}
- textbackground(0);
- textcolor(9);
- clrscr;
- T_HDRimg{Display the text header ansi};
- window(4,5,76,21);
- gotoxy(1,1);
- xch := ' ';
- for x := 1 to 16 do
- writeln(xline[x]);
- while (xch <> (#13)) and (xch <> (#27)) do begin
- xch := ' ';
- xch := readkey;
- case xch of
- (#80) :begin
- if x <= xend then
- begin
- x := x + 1;
- gotoxy(1,1);
- delLine;
- gotoxy(1,16);
- writeln(xline[x]);
- end;
- end;
- (#72) :begin
- if (x - 15) > (1) then
- begin
- x := x - 1;
- gotoxy(1,1);
- InsLine;
- writeln(xline[x-15]);
- end;
- end;
- (#81) :begin
- if x <= xend then
- begin
- x := x + 1;
- gotoxy(1,1);
- delLine;
- gotoxy(1,16);
- writeln(xline[x]);
- end;
- end;
- (#73) :begin
- if (x - 15) > (1) then
- begin
- x := x - 1;
- gotoxy(1,1);
- InsLine;
- writeln(xline[x-15]);
- end;
- end;
- (#77) :begin
- if x <= xend then
- begin
- x := x + 1;
- gotoxy(1,1);
- delLine;
- gotoxy(1,16);
- writeln(xline[x]);
- end;
- end;
- (#75) :begin
- if (x - 15) > (1) then
- begin
- x := x - 1;
- gotoxy(1,1);
- InsLine;
- writeln(xline[x-15]);
- end;
- end;
- end;
- end;
- window(1,1,80,25){Return screen to normal size};
- END;
-
-
-
-
-